home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue54 / Persist / VisitorPattern.bpg < prev   
Encoding:
Borland Project Group  |  2000-01-07  |  826 b   |  25 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = tiPatterns.bpl VisitorDemo.exe
  13. #------------------------------------------------------------------------------
  14. default: $(PROJECTS)
  15. #------------------------------------------------------------------------------
  16.  
  17.  
  18. tiPatterns.bpl: tiPatterns.dpk
  19.   $(DCC)
  20.  
  21. VisitorDemo.exe: VisitorDemo.dpr
  22.   $(DCC)
  23.  
  24.  
  25.